Skip to content

Commit

Permalink
fix(build): do not cache apt update in server dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
alambare committed Dec 6, 2024
1 parent d709297 commit d790d3f
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 d790d3f

Please sign in to comment.