mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
11 lines
174 B
Docker
11 lines
174 B
Docker
|
FROM alpine:3
|
||
|
|
||
|
COPY ./scepclient-linux-amd64 /usr/bin/scepclient
|
||
|
COPY ./scepserver-linux-amd64 /usr/bin/scepserver
|
||
|
|
||
|
EXPOSE 8080
|
||
|
|
||
|
VOLUME ["/depot"]
|
||
|
|
||
|
ENTRYPOINT ["scepserver"]
|