Archived
1
0

Add docker image pushing

This commit is contained in:
Anmol Sethi
2020-02-18 13:06:18 -05:00
parent 1a54f6b7ef
commit 1a91588c42
5 changed files with 34 additions and 5 deletions

View File

@ -3,7 +3,7 @@ FROM debian:10
RUN apt-get update
RUN apt-get install -y curl
COPY code-server*.tar.gz /tmp
COPY release/code-server*.tar.gz /tmp
RUN cd /tmp && tar -xzf code-server*.tar.gz && \
cp code-server*/code-server /usr/local/bin/code-server
RUN rm -rf /tmp/*