plebdevs/Dockerfile

14 lines
157 B
Docker
Raw Normal View History

# syntax=docker/dockerfile:1
FROM node:18.17.0-bullseye
WORKDIR /app
EXPOSE 3000
COPY . .
2024-03-13 17:45:55 -05:00
RUN npm install --legacy-peer-deps
CMD ["npm", "run", "dev"]