Initial commit

This commit is contained in:
Chris Plaatjes
2022-07-11 17:07:23 -04:00
commit ae65d71380
2 changed files with 40 additions and 0 deletions

15
Dockerfile Normal file
View 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" ]