trianta.dev/Dockerfile
2024-09-17 18:40:58 -05:00

16 lines
167 B
Docker

FROM nginx:alpine
RUN apt-get update && apt-get install -y nodejs npm
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3466