Grey Market Labs assessment

This commit is contained in:
2022-04-27 22:01:08 -04:00
parent 01926a3cca
commit 4ab043c3a9
8 changed files with 256 additions and 2 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:latest
# Set working directoy
WORKDIR /usr/src/app
# Copy dependencies and install
COPY package*.json ./
RUN npm install
# Copy code
COPY *.js ./
# Run the app
EXPOSE 3000
COPY start.sh .
RUN chmod 777 start.sh
CMD ./start.sh