Skip to content

Commit

Permalink
Create docker image for the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lyrakisk committed Oct 9, 2024
1 parent dd47ff3 commit f9919db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ env:
jobs:
Test:

runs-on: ubuntu-latest
runs:
using: 'docker'
image: './docker/Dockerfile'

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 6 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# ubuntu 22.04
FROM ubuntu@sha256:3d1556a8a18cf5307b121e0a98e93f1ddf1f3f8e092f1fddfd941254785b95d7

RUN apt update && \
DEBIAN_FRONTEND=noninteractive apt-get install -qy --no-install-recommends \
libsdl2-dev

0 comments on commit f9919db

Please sign in to comment.