Skip to content

Commit

Permalink
Expickitly mkdir the clone destination?
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjmetzger committed Dec 10, 2023
1 parent 0093227 commit 1cd1e52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Use the official Python image as the base image
FROM python:3.12

# Clone the GitHub repository
RUN git clone https://github.com/andrewjmetzger/beetseeker.git

# Set the working directory in the container
RUN mkdir -p "/beetseeker"
WORKDIR ["/beetseeker"]

# Clone the GitHub repository
RUN git clone https://github.com/andrewjmetzger/beetseeker.git "/beetseeker"

# Install project dependencies
RUN pip install --no-cache-dir -r requirements.txt

Expand Down

0 comments on commit 1cd1e52

Please sign in to comment.