trianta.dev/Dockerfile
2024-09-17 19:20:32 -05:00

17 lines
186 B
Docker

FROM nginx:latest
RUN apt-get update && apt-get install -y nodejs npm
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm run build
COPY . /usr/share/nginx/html
EXPOSE 80