Skip to content

Commit

Permalink
fix(build): do not cache apt update in server dockerfile (#1430)
Browse files Browse the repository at this point in the history
  • Loading branch information
alambare authored Dec 18, 2024
1 parent 2fc3f27 commit b871978
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/stac-server.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ ENV \

# update system
RUN apt-get update \
&& apt-get upgrade -y
&& apt-get upgrade -y \
&& echo "Build time: $(date)" > /dev/null

# reconfigure timezone
RUN echo $TZ > /etc/timezone && \
Expand Down

0 comments on commit b871978

Please sign in to comment.