1
0

Moved Dockerfile to root

Signed-off-by: James Ketrenos <jketreno@media.ketrenos.com>
This commit is contained in:
James Ketrenos 2022-04-06 14:18:52 +00:00
parent 1159557b9f
commit 9b57397b43
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@ FROM node:16
# replace this with your application's default port
EXPOSE 11141
COPY * /home/node/app/
WORKDIR /home/node/app
COPY / /home/node/app/
WORKDIR /home/node/app/server
RUN npm install