forked from nesbox/TIC-80
-
Notifications
You must be signed in to change notification settings - Fork 0
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
carlos gonzález
committed
Apr 26, 2021
1 parent
d8312cf
commit b8e175c
Showing
1 changed file
with
3 additions
and
3 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,6 +1,6 @@ | ||
FROM ubuntu:18.04 | ||
RUN apt-get update && apt-get install -y git cmake libgtk-3-dev \ | ||
RUN apt-get update && apt-get install -y g++ git cmake libgtk-3-dev \ | ||
libglvnd-dev libglu1-mesa-dev freeglut3-dev libasound2-dev | ||
WORKDIR ${DAPPER_SOURCE:-/source} | ||
ENV DAPPER_OUTPUT bin | ||
ENTRYPOINT ["sh", "-c", "cmake . && make -j4"] | ||
ENV DAPPER_OUTPUT build/bin | ||
ENTRYPOINT ["sh", "-c", "cd build; cmake .. && make -j4"] |