Skip to content
Snippets Groups Projects

Resolve "Data ingress for context information for tiki-wiki"

6 files
+ 418
0
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 15
0
# Use an official Python runtime as a base image
FROM python:3.11-slim
# Set the working directory in the container
WORKDIR /app
# Copy the current directory contents into the container at /usr/src/app
COPY test.pem /app/client.pem
COPY test.key /app/client.key
COPY test-ingress.py /app/
COPY client.py /app/
COPY main.py /app/
# Install any needed packages specified in requirements.txt
RUN pip install requests
\ No newline at end of file
Loading