Skip to content

Commit

Permalink
Update standalone containers
Browse files Browse the repository at this point in the history
  • Loading branch information
QcFe authored and kingmakerbot committed Sep 20, 2022
1 parent 352238f commit c20efab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions provisioning/standalone/vscode/base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:21.10
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND=noninteractive
ENV CODESERVER_VERSION=4.1.0
ENV CODESERVER_VERSION=4.7.0
ARG CODETOGETHER_ENABLED_ARG=false
ENV CODETOGETHER_ENABLED=$CODETOGETHER_ENABLED_ARG
ENV SERVICE_URL=https://open-vsx.org/vscode/gallery
Expand Down
2 changes: 1 addition & 1 deletion provisioning/standalone/vscode/c-cpp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
INCLUDE+ ./base/Dockerfile

ENV SUDO_FORCE_REMOVE yes
ENV CPPTOOLS_VERSION=v1.9.8
ENV CPPTOOLS_VERSION=v1.12.4


COPY ./c-cpp/project/main.c /example_project/main.c
Expand Down
4 changes: 2 additions & 2 deletions provisioning/standalone/vscode/golang/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apt-get update && \
apt-get install -y gcc wget

# Download and install golang and required tools
ADD https://go.dev/dl/go1.18.linux-amd64.tar.gz /usr/local/go.tar.gz
ADD https://go.dev/dl/go1.19.linux-amd64.tar.gz /usr/local/go.tar.gz
ADD https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh install.sh
RUN tar -xzf /usr/local/go.tar.gz -C /usr/local && \
echo 'export PATH=$PATH:/usr/local/go/bin'>>/root/.bashrc && \
Expand All @@ -28,7 +28,7 @@ RUN tar -xzf /usr/local/go.tar.gz -C /usr/local && \
/usr/local/go/bin/go install honnef.co/go/tools/cmd/staticcheck@latest && \
/usr/local/go/bin/go env GOPATH && \
cp /config/go/bin/dlv /config/go/bin/dlv-dap && \
/bin/bash ./install.sh -b $(/usr/local/go/bin/go env GOPATH)/bin v1.43.0 && \
/bin/bash ./install.sh -b $(/usr/local/go/bin/go env GOPATH)/bin v1.49.0 && \
rm install.sh

# Remove apt and useless/dangerous packages
Expand Down
2 changes: 1 addition & 1 deletion provisioning/standalone/vscode/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ RUN chown -R ${USER}:${USER} /config && \
chown -R ${USER}:${USER} /example_project

USER ${USER}
ENTRYPOINT [ "/start.sh" ]
ENTRYPOINT [ "/start.sh" ]

0 comments on commit c20efab

Please sign in to comment.