-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ca1e90
commit 573ec89
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM debian:10-slim AS base | ||
FROM debian:10 AS base | ||
RUN apt-get -y update && \ | ||
apt-get -y --force-yes install ca-certificates wget unzip && \ | ||
wget https://static.soldat.pl/downloads/soldatserver2.8.2_1.7.1.1.zip && \ | ||
|
@@ -12,7 +12,7 @@ RUN apt-get -y update && \ | |
ADD ./config/ /soldat/ | ||
RUN chmod +x soldat/start.sh | ||
|
||
FROM debian:10-slim | ||
FROM debian:10 | ||
MAINTAINER Kristian Dahl Kærgaard <[email protected]> | ||
COPY --from=base /soldat /soldat | ||
RUN useradd -ms /bin/bash soldat && \ | ||
|