File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : Build and Push DevContainer Images
22
33on :
4- workflow_dispatch :
4+ pull_request :
5+ branches :
6+ - main
7+ types :
8+ - opened
9+ - reopened
10+ - synchronize
11+ paths :
12+ - " ./dockerfiles/**"
513
614jobs :
715 detect-changes :
Original file line number Diff line number Diff line change 1+ .DS_Store
Original file line number Diff line number Diff line change 1- ARG VERSION
2- FROM mcr.microsoft.com/devcontainers/base:ubuntu-${VERSION}
1+ ARG UBUNTU_VERSION
2+
3+ FROM mcr.microsoft.com/devcontainers/base:ubuntu-${UBUNTU_VERSION}
34
45USER vscode
56
6- RUN apt-get update && apt-get install -y \
7+ RUN sudo apt-get update && sudo apt-get install -y \
78 build-essential \
89 wget \
910 curl \
@@ -12,4 +13,5 @@ RUN apt-get update && apt-get install -y \
1213 software-properties-common \
1314 ca-certificates \
1415 lsb-release \
15- apt-transport-https
16+ apt-transport-https \
17+ telnet
Original file line number Diff line number Diff line change 1+ image :
2+ name : ghcr.io/appzic/devcontainer-ubuntu
3+ tags :
4+ - tag : 22.04
5+ args :
6+ - ubuntu_version : 22.04
7+ - tag : 24.04
8+ args :
9+ - ubuntu_version : 24.04
You can’t perform that action at this time.
0 commit comments