Compare commits

...

1 Commits

Author SHA1 Message Date
Maxence e8a62b4355 Use nginx to serve built files 2023-04-21 16:16:03 -04:00
+3 -6
View File
@@ -12,11 +12,8 @@ RUN npm run build
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Create a clean python-based image with just the build results # Create a clean nginx-alpine image with just the build results
FROM python:3-slim
WORKDIR /maputnik
COPY --from=builder /maputnik/build/build . FROM nginx:alpine
EXPOSE 8888 COPY --from=builder /maputnik/build/build /usr/share/nginx/html/
CMD python -m http.server 8888