chore: server setup complete

This commit is contained in:
Danny Avila 2023-03-06 10:28:37 -05:00
parent fca546af63
commit affbaaf1a5
3 changed files with 7898 additions and 6 deletions

View file

@ -6,7 +6,7 @@ COPY package*.json /api/
RUN npm install
# Copy the current directory contents into the container at /api
COPY . /api/
# Make port 80 available to the world outside this container
EXPOSE 80
# Make port 3080 available to the world outside this container
EXPOSE 3080
# Run the app when the container launches
CMD ["npm", "start"]