Skip to content
Snippets Groups Projects
Commit cbb8908a authored by Daniel de Leng's avatar Daniel de Leng
Browse files

Fix CI/CD pipeline with local Docker image

parent b1afa3b0
Branches
Tags
No related merge requests found
Pipeline #133016 passed
...@@ -2,7 +2,6 @@ variables: ...@@ -2,7 +2,6 @@ variables:
GIT_SUBMODULE_STRATEGY: recursive GIT_SUBMODULE_STRATEGY: recursive
pages: pages:
#image: davidbergstrom/pycommandcenterenv
image: gitlab.liu.se:5000/starcraft-ai-course/pycommandcenter image: gitlab.liu.se:5000/starcraft-ai-course/pycommandcenter
stage: deploy stage: deploy
script: script:
...@@ -19,5 +18,5 @@ pages: ...@@ -19,5 +18,5 @@ pages:
artifacts: artifacts:
paths: paths:
- public - public
# only: only:
# - master - master
FROM ubuntu:22.04 # Sets up a Ubuntu 24.04 LTS environment with Python 3.12 suitable for building PyCommandCenter and its documentation
ENV HOME=/root FROM ubuntu:24.04
LABEL org.opencontainers.image.authors="daniel.de.leng@liu.se"
RUN apt update && apt install -y build-essential cmake python3-full python3-pybind11 python3-pip python3-sphinx python3-sphinx-design
ENV HOME=/root
WORKDIR /root WORKDIR /root
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment