mirror of
https://github.com/Kizaing/simplex-chat-docker.git
synced 2025-07-15 17:59:09 -04:00
Initial commit
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@ -0,0 +1,15 @@
|
||||
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" ]
|
Reference in New Issue
Block a user