1
0
mirror of https://git.cloudron.io/dswd/vscode-app.git synced 2025-03-14 18:42:45 +00:00

26 lines
629 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
2021-04-14 21:43:53 +02:00
ADD favicon /app/code/favicon
RUN cp /app/code/favicon/* /usr/lib/code-server/src/browser/media/
2021-04-14 20:22:51 +02:00
2021-04-20 00:16:17 +02:00
RUN usermod -aG sudo cloudron
Add chroot-alpine /usr/local/bin/chroot-alpine
2021-04-14 20:22:51 +02:00
2021-04-20 00:16:17 +02:00
CMD [ "/app/code/start.sh" ]