12 lines
148 B
Docker
12 lines
148 B
Docker
|
FROM gitea/gitea:1.14.5
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY app_link.txt ./
|
||
|
COPY conf_script.sh ./
|
||
|
|
||
|
RUN chmod +x ./conf_script.sh
|
||
|
|
||
|
ENTRYPOINT ["./conf_script.sh"]
|
||
|
|