We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8703050 commit 9b03363Copy full SHA for 9b03363
.github/workflows/publish.yaml
@@ -24,7 +24,7 @@ jobs:
24
build:
25
strategy:
26
matrix:
27
- directory: [app, backend]
+ directory: [app, backend, cpp]
28
29
runs-on: ubuntu-latest
30
permissions:
cpp/Dockerfile
@@ -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