We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcdb3ab commit efc299fCopy full SHA for efc299f
subscription/notify-lambda/Dockerfile
@@ -0,0 +1,18 @@
1
+# Use an official Python runtime as a parent image
2
+FROM python:3.13-slim
3
+
4
+# Install zip utility
5
+RUN apt-get update && apt-get install -y zip
6
7
+# Set the working directory in the container
8
+WORKDIR /app
9
10
+# Copy the current directory contents into the container at /app
11
+COPY . /app
12
13
+# Make sure build.sh is executable
14
+RUN chmod +x build.sh
15
16
+# Run build.sh when the container launches
17
+CMD ["./build.sh"]
18
0 commit comments