legacy-server-config/starbound/Dockerfile

6 lines
166 B
Docker
Raw Permalink Normal View History

2021-01-01 15:09:53 +00:00
FROM debian:buster-slim
COPY ./binaries/ /starbound/
COPY ./docker-entrypoint.sh /
RUN apt install bash
EXPOSE 21025
ENTRYPOINT ["/bin/bash", "/docker-entrypoint.sh"]