6 lines
166 B
Docker
6 lines
166 B
Docker
|
FROM debian:buster-slim
|
||
|
COPY ./binaries/ /starbound/
|
||
|
COPY ./docker-entrypoint.sh /
|
||
|
RUN apt install bash
|
||
|
EXPOSE 21025
|
||
|
ENTRYPOINT ["/bin/bash", "/docker-entrypoint.sh"]
|