Skip to content

Commit 9b03363

Browse files
committedAug 30, 2024·
build: add cpp Docker image
1 parent 8703050 commit 9b03363

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed
 

‎.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
build:
2525
strategy:
2626
matrix:
27-
directory: [app, backend]
27+
directory: [app, backend, cpp]
2828

2929
runs-on: ubuntu-latest
3030
permissions:

‎cpp/Dockerfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM debian:latest
2+
3+
# Set the working directory in the container
4+
WORKDIR /app
5+
6+
# Install necessary dependencies
7+
RUN apt-get update && apt-get install -y \
8+
g++ \
9+
libcpprest-dev \
10+
libboost-all-dev \
11+
libssl-dev \
12+
cmake

0 commit comments

Comments
 (0)
Please sign in to comment.