Initial commit

This commit is contained in:
Mike Conrad
2024-10-16 17:37:03 -04:00
parent a95fdc4454
commit 17e672e695
7 changed files with 415 additions and 8 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json .
COPY . .
ARG MY_VARIABLE
ENV MY_VARIABLE=${MY_VARIABLE}
RUN npm install
ENV HOST=0.0.0.0
# The port our application is listening on
EXPOSE 3000
CMD ["npm", "run", "start"]