We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca1513f commit 5ed50b5Copy full SHA for 5ed50b5
Dockerfile
@@ -4,6 +4,7 @@ WORKDIR /usr/src/app
4
COPY ["package.json", "yarn.lock", "./"]
5
RUN npm install --production --silent && mv node_modules ../
6
COPY . .
7
-VOLUME [ "/data" ]
+VOLUME [ "./data" ]
8
+COPY "config.example.json" "./data"
9
EXPOSE 8000
10
CMD yarn start
0 commit comments