sk-docker / Dockerfile
ronvolutional's picture
chore: Tidy :)
0507064
raw
history blame
157 Bytes
from node:18-alpine
WORKDIR /app
COPY . .
COPY package.json package-lock.json
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node", "build"]