trianta.dev/Dockerfile

16 lines
185 B
Docker
Raw Normal View History

2024-09-17 18:43:39 -05:00
FROM nginx:latest
2024-09-17 02:30:55 -05:00
2024-09-17 18:40:58 -05:00
RUN apt-get update && apt-get install -y nodejs npm
2024-09-17 02:30:55 -05:00
WORKDIR /app
COPY package*.json ./
RUN npm install
2024-09-17 19:19:15 -05:00
COPY . /usr/share/nginx/html
2024-09-17 02:30:55 -05:00
RUN npm run build
2024-09-17 19:09:54 -05:00
EXPOSE 80