8 lines
115 B
Text
8 lines
115 B
Text
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --update --no-cache ca-certificates
|
||
|
|
||
|
ADD surreal /usr/bin/
|
||
|
|
||
|
ENTRYPOINT ["surreal"]
|