Skip to content

Commit

Permalink
reduce comment versbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
TimidRobot committed Apr 5, 2024
1 parent 3182032 commit a06528c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
9 changes: 1 addition & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
# Use Node.js version 14 as base image
# https://hub.docker.com/_/node/
FROM node:14

# Set the working directory inside the container
WORKDIR /app

# Copy package.json and package-lock.json files to the working directory
COPY package.json package-lock.json ./

# Install npm dependencies
RUN npm install

# Expose port 8080
EXPOSE 8080

# Command to start the application
CMD ["npm", "run", "serve"]
6 changes: 1 addition & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Docker Compose configuration file
# For more information on Docker Compose file format version 2, please visit:
# Use docker compose v2 for non swarm deployments
# https://docs.docker.com/compose/compose-file/compose-file-v2/

# Use Compose file format version 2.4
# Since we are not using swarm mode, Compose file version 2 is preferred.
version: '2.4'

services:
Expand Down

0 comments on commit a06528c

Please sign in to comment.