Skip to content

Create Dockerfile #136

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Create Dockerfile #136

wants to merge 1 commit into from

Conversation

PasvEmma
Copy link

No description provided.


EXPOSE 8000

CMD ["npm", "start"]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
CMD ["npm", "start"]
CMD ["npm", "start"]
```FROM node:16.20.2-alpine3.18
WORKDIR /app
COPY package*.json ./
RUN npm config set cache /app/.npm-cache && npm install
COPY . .
USER app
EXPOSE 8000
CMD ["npm", "start"]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants