12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
FROM ubuntu:mantic
|
|
|
|
WORKDIR /app
|
|
|
|
COPY arm64/cph_open cph_open
|
|
|
|
RUN apt-get update -y
|
|
RUN apt-get upgrade -y
|
|
RUN apt-get install -y libssl-dev ca-certificates
|
|
|
|
ENTRYPOINT ["./cph_open"]
|