Update Debian packages during container build
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Steven Polley 2020-10-04 21:23:16 +00:00
parent 425ff202db
commit 6981c8095c
1 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,12 @@
FROM codercom/code-server:latest
# Install updated packages
RUN sudo apt update && \
sudo apt upgrade -y && \
sudo apt clean autoclean && \
sudo apt autoremove -y
# Install Go
RUN curl -O https://dl.google.com/go/go1.15.2.linux-amd64.tar.gz && \
tar xvfz go1.15.2.linux-amd64.tar.gz && \