Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 514 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 514 Bytes

Docker images with SGDK

Building Docker images

Building Docker image based on Ubuntu

make build

Building Docker image based on Alpine

make build-alpine

How to use

SGDK_VERSION=1.90
SGDK_PROJECT_PATH="~/my-sgdk-project"
SGDK_PROJECT_COMPILER_CMD="g++ main.cpp -o main -g `pkg-config --cflags --static --libs allegro`"
docker run -v $SGDK_PROJECT_PATH:/tmp/workdir \
-w /tmp/workdir \
-ti gstolarz/sgdk:$SGDK_VERSION \
bash -c "$SGDK_PROJECT_COMPILER_CMD"