Removed unnecessary git dep in docker image
This commit is contained in:
@ -15,8 +15,8 @@
|
|||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
// "forwardPorts": [],
|
// "forwardPorts": [],
|
||||||
|
|
||||||
// Uncomment the next line to run commands after the container is created.
|
// The basic image doesn't have or need git, but we do to work in it
|
||||||
// "postCreateCommand": "cat /etc/os-release",
|
"postCreateCommand": "apt-get install -y git",
|
||||||
|
|
||||||
// Configure tool-specific properties.
|
// Configure tool-specific properties.
|
||||||
"customizations": {
|
"customizations": {
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
FROM gcc:12
|
FROM gcc:12
|
||||||
|
|
||||||
# Install build tools
|
# Install build tools
|
||||||
RUN apt-get update && apt-get install -y python3 ninja-build python3-pip gdb graphviz git
|
RUN apt-get update && apt-get install -y python3 python3-pip ninja-build gdb graphviz
|
||||||
RUN pip install meson gcovr
|
RUN pip install meson gcovr
|
||||||
# The version of doxy in the Debian repos is too old to support concepts, so we grab the latest release and manually install
|
# The version of doxy in the Debian repos is too old to support concepts, so we grab the latest release and manually install
|
||||||
RUN wget --progress=bar:force:noscroll https://www.doxygen.nl/files/doxygen-1.9.5.linux.bin.tar.gz && \
|
RUN wget --progress=bar:force:noscroll https://www.doxygen.nl/files/doxygen-1.9.5.linux.bin.tar.gz && \
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
# ${REPO_NAME_PASCAL}
|
# ${REPO_NAME_PASCAL}
|
||||||
|
|
||||||

|
|
||||||

|

|
||||||
|
|
||||||
${REPO_DESCRIPTION}
|
${REPO_DESCRIPTION}
|
||||||
@ -14,7 +14,7 @@ resources:
|
|||||||
username: ((gitea.username))
|
username: ((gitea.username))
|
||||||
password: ((gitea.password))
|
password: ((gitea.password))
|
||||||
|
|
||||||
- name: image-out
|
- name: dev-image
|
||||||
type: registry-image
|
type: registry-image
|
||||||
icon: docker
|
icon: docker
|
||||||
source:
|
source:
|
||||||
@ -91,9 +91,10 @@ jobs:
|
|||||||
outputs:
|
outputs:
|
||||||
- name: image
|
- name: image
|
||||||
params:
|
params:
|
||||||
CONTEXT: image-repo
|
CONTEXT: cpp-src
|
||||||
run:
|
run:
|
||||||
path: build
|
path: build
|
||||||
- put: image-out
|
|
||||||
|
- put: dev-image
|
||||||
params:
|
params:
|
||||||
image: image/image.tar
|
image: image/image.tar
|
||||||
Reference in New Issue
Block a user