Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM buildpack-deps:jammy@sha256:4b87c2ce43b264d82daa23fdbd88fb1b5f1bc61cbee338eba7a41a47236f7b9a
FROM buildpack-deps:jammy@sha256:d4dd8c4891377f710f1509f5a3aa777e9d64f3c93f9b3be198a10cdd497c8ac4

# Dazzle does not rebuild a layer until one of its lines are changed. Increase this counter to rebuild this layer.
ENV TRIGGER_REBUILD=2
Expand Down
2 changes: 1 addition & 1 deletion chunks/lang-java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN curl -fsSL "https://get.sdkman.io" | bash \
&& sdk default java ${JAVA_VERSION} \
&& sdk install gradle \
# 4.x requires Java 17+ https://maven.apache.org/docs/history.html
&& sdk install maven 3.9.9 \
&& sdk install maven 3.9.10 \
&& sdk flush archives \
&& sdk flush temp \
&& mkdir /home/gitpod/.m2 \
Expand Down
2 changes: 1 addition & 1 deletion chunks/tool-nginx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV TRIGGER_REBUILD=2
# Install composer
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer

RUN for _ppa in 'ppa:ondrej/php' 'ppa:ondrej/apache2' 'ppa:ondrej/nginx-mainline'; do add-apt-repository -y "$_ppa"; done \
RUN for _ppa in 'ppa:ondrej/php' 'ppa:ondrej/apache2' 'ppa:ondrej/nginx'; do add-apt-repository -y "$_ppa"; done \
&& install-packages \
apache2 \
nginx \
Expand Down
Loading