1
0
mirror of https://git.cloudron.io/dswd/vscode-app.git synced 2025-03-15 02:52:47 +00:00

22 lines
455 B
Docker
Raw Normal View History

2021-04-14 20:22:51 +02:00
FROM cloudron/base:3.0.0
MAINTAINER Dennis Schwerdel <schwerdel@googlemail.com>
ENV VERSION=3.9.3
RUN mkdir -p /app/code
WORKDIR /app/code
RUN curl -fsSL https://code-server.dev/install.sh | sh -s -- --version ${VERSION}
ADD config.yaml /app/code/default-config.yaml
RUN mv /home/cloudron /app/code/default-home \
&& ln -s /app/data /home/cloudron
WORKDIR /app/data
ENV HOME=/app/data
ADD start.sh /app/code/start.sh
CMD [ "/app/code/start.sh" ]