Skip to content

Commit efc299f

Browse files
committed
CMR-10313: Adding dockerfile to build with the correct version of python.
1 parent fcdb3ab commit efc299f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)