Skip to content
Draft
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
4 changes: 4 additions & 0 deletions src/base-ubuntu/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ FROM buildpack-deps:${VARIANT}-curl

LABEL dev.containers.features="common"

# Fix timezone configuration
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

ARG VARIANT
RUN if [ "$VARIANT" = "noble" ]; then \
if id "ubuntu" &>/dev/null; then \
Expand Down