mirror of
https://github.com/Kizaing/simplex-chat-docker.git
synced 2024-11-22 07:55:29 -05:00
15 lines
281 B
Docker
15 lines
281 B
Docker
|
FROM ubuntu:focal
|
||
|
|
||
|
COPY ./smp-server-ubuntu-20_04-x86-64 /app/smp-server
|
||
|
COPY ./entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y openssl \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
EXPOSE 5223
|
||
|
|
||
|
ENTRYPOINT [ "/bin/bash" ]
|
||
|
CMD [ "/entrypoint.sh" ]
|