This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
git.autonomic.zone/Dockerfile
Luke Murphy 722e9af1e4
Revert "Just use the $WORKDIR"
This reverts commit 487fb34b68.

Remembered that we can't rely on WORKDIR if it is set upstream and then
we have to hard code that in the app.json. So, stick with the /app/
folder for now.
2020-03-12 16:13:58 +01:00

9 lines
101 B
Docker

FROM gitea/gitea:1.11.2
COPY . ${WORKDIR}
RUN mkdir -p /app/
COPY postdeploy.sh /app/
EXPOSE 3000