Use nginx to serve built files

This commit is contained in:
Maxence
2023-04-21 15:40:33 -04:00
parent 2ff3d08bb0
commit e8a62b4355

View File

@@ -12,11 +12,8 @@ RUN npm run build
#---------------------------------------------------------------------------
# Create a clean python-based image with just the build results
FROM python:3-slim
WORKDIR /maputnik
# Create a clean nginx-alpine image with just the build results
COPY --from=builder /maputnik/build/build .
FROM nginx:alpine
EXPOSE 8888
CMD python -m http.server 8888
COPY --from=builder /maputnik/build/build /usr/share/nginx/html/