Initial version

This commit is contained in:
Dennis Schwerdel
2021-04-14 20:22:51 +02:00
commit 76ad8d62bd
10 changed files with 117 additions and 0 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
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" ]