mirror of
https://github.com/30hours/3lips.git
synced 2024-11-08 12:25:42 +00:00
16 lines
516 B
Docker
16 lines
516 B
Docker
# Use a lightweight base image
|
|
FROM httpd:2.4-alpine
|
|
|
|
# Set the working directory to Apache's document root
|
|
WORKDIR /usr/local/apache2/htdocs/
|
|
|
|
# Download and extract CesiumJS 1.114 release from GitHub
|
|
RUN apk --no-cache add curl unzip && \
|
|
curl -L -o cesium.zip https://github.com/CesiumGS/cesium/releases/download/1.114/Cesium-1.114.zip && \
|
|
unzip cesium.zip -d cesium && mv cesium/* . && rm cesium.zip && rm -r cesium
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start Apache in the foreground
|
|
CMD ["httpd-foreground"]
|