8 lines
166 B
Plaintext
8 lines
166 B
Plaintext
FROM nginx as base
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
EXPOSE 18001
|
|
|
|
FROM base AS final
|
|
WORKDIR /app
|
|
COPY ["./dist/","."]
|
|
ENTRYPOINT ["nginx", "-g", "daemon off;"] |