getting-started-app/Dockerfile

8 lines
142 B
Docker
Raw Normal View History

2023-10-07 03:31:04 -04:00
# syntax=docker/dockerfile:1
FROM node:18-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]
EXPOSE 3000