init
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user