-
Notifications
You must be signed in to change notification settings - Fork 1
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
edd2e39
commit d1a090d
Showing
2 changed files
with
1 addition
and
7 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
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 |
---|---|---|
|
@@ -4,9 +4,6 @@ LABEL org.opencontainers.image.authors "Jack Greiner <[email protected]>" | |
LABEL org.opencontainers.image.source "https://github.com/ProjectSynchro/synchros-sexy-docker-containers" | ||
LABEL org.opencontainers.image.description "Steam runtime (Soldier) development environment for Naev, various dependencies for testing meson and autotools as well as additional Naev functionality." | ||
|
||
# Update APT repositories | ||
RUN apt-get update | ||
|
||
# Install pip from steam/debian repositories. | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip | ||
RUN python3 -m pip install --upgrade pip && \ | ||
|
@@ -25,9 +22,6 @@ RUN python3 -m pip install meson --upgrade && \ | |
which meson && \ | ||
meson --version | ||
|
||
# Naughty: we need libwebp, not in the SDK... though only at runtime, dynamically loaded by SDL2_mixer. | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libwebp-dev | ||
|
||
# Cleanup apt cache and remove lists. | ||
RUN apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|