dc-weather-prediction / web /Dockerfile.frontend
00ber
added source code
f61d311
raw
history blame contribute delete
150 Bytes
FROM node:18-alpine3.15
WORKDIR /app
COPY package.json ./
COPY package-lock.json ./
RUN npm update && npm install
COPY . .
CMD ["npm", "start"]