14 lines
173 B
Docker
14 lines
173 B
Docker
FROM node:18-alpine
|
|
|
|
RUN apk add --no-cache nginx
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app/
|
|
|
|
COPY nginx.conf /etc/nginx/http.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|