Skip to content

Commit

Permalink
minor changes to fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
BWibo committed Mar 6, 2023
1 parent 85c2f65 commit de3173b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN set -x && apt-get update && \

# Fetch
RUN set -x && \
git clone https://github.com/ahuarte47/cesium-terrain-builder.git && \
cd cesium-terrain-builder && \
git checkout master-quantized-mesh
git clone -b master-quantized-mesh --depth 1 \
https://github.com/ahuarte47/cesium-terrain-builder.git && \
cd cesium-terrain-builder

# Build stage #################################################################
FROM debian:buster AS buildstage
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Fetch stage #################################################################
FROM alpine:3.12 AS fetchstage
FROM alpine:3.17 AS fetchstage

# Setup fetch deps
RUN set -ex && \
Expand All @@ -9,9 +9,9 @@ RUN set -ex && \
# Fetch source code
RUN set -x && \
mkdir -p ctbtemp && cd ctbtemp && \
git clone https://github.com/ahuarte47/cesium-terrain-builder.git && \
cd cesium-terrain-builder && \
git checkout master-quantized-mesh
git clone -b master-quantized-mesh --depth 1 \
https://github.com/ahuarte47/cesium-terrain-builder.git && \
cd cesium-terrain-builder

# Cleanup
RUN set -x && \
Expand Down Expand Up @@ -72,4 +72,4 @@ LABEL maintainer.email="b.willenborg(at)tum.de"
LABEL maintainer.organization="Chair of Geoinformatics, Technical University of Munich (TUM)"
LABEL source.repo="https://github.com/tum-gis/cesium-terrain-builder-docker"
LABEL docker.image="tumgis/ctb-quantized-mesh"
LABEL docker.image.tag "alpine"
LABEL docker.image.tag "alpine"

0 comments on commit de3173b

Please sign in to comment.