13 lines
194 B
Docker
13 lines
194 B
Docker
FROM gitea/gitea:1.14.5-rootless
|
|
|
|
WORKDIR /app
|
|
|
|
COPY heroku-app.txt /app/heroku-app.txt
|
|
|
|
USER root
|
|
|
|
COPY script.sh /app/script.sh
|
|
|
|
RUN chmod +x /app/script.sh
|
|
|
|
ENTRYPOINT ./script.sh |