Skip to content

Commit

Permalink
Dockerfileの不要なコメントと空行を削除
Browse files Browse the repository at this point in the history
miutaku authored and miutaku committed Jan 26, 2025
1 parent a2b1452 commit b75e9a1
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions manage-frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,8 @@
# Use the official Node.js image as the base image
FROM node:lts

# Set the working directory
WORKDIR /app

# Copy package.json and package-lock.json
COPY twitcasting-manager/package*.json ./

# Install dependencies
RUN npm install --legacy-peer-deps

# Copy the rest of the application code
COPY twitcasting-manager/ ./

# Build the application
RUN npm run build

# Expose the port the app runs on
EXPOSE 3000

# Start the application
CMD ["npm", "start"]

0 comments on commit b75e9a1

Please sign in to comment.