This commit is contained in:
Yoshino-s
2023-06-06 12:26:01 +08:00
commit e1d95edc2c
8 changed files with 962 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM ghcr.io/coder/coder:latest as base
FROM python:3.10-alpine3.14 as replacer
COPY --from=base /opt/coder /coder
COPY replace.py /
RUN python /replace.py /coder
FROM base
COPY --from=replacer /coder /opt/coder