Skip to content

Commit

Permalink
getting back online
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Jack Marden authored and Joshua Jack Marden committed Oct 15, 2024
1 parent 1ad2e28 commit d663ff9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion infrastructure/Dockerfile.pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ FROM python:3.12
# Set the working directory inside the container to /app
WORKDIR /app

# Install necessary development libraries for psycopg2
RUN apt-get update && apt-get install -y libpq-dev gcc

# Copy the requirements file and install dependencies
COPY ../requirements.txt .
RUN pip3 install -r requirements.txt

# Copy necessary Python scripts from the pipeline directory into the container
COPY pipeline/extract_to_s3.py .
COPY pipeline/extract_carbon.py .
COPY pipeline/extract_many.py .
COPY pipeline/transform.py .
COPY pipeline/common.py .

Expand Down

0 comments on commit d663ff9

Please sign in to comment.