Skip to content

Commit

Permalink
techtrends: fix incorrect root path in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
weiyshay committed Jul 15, 2024
1 parent 3d4028c commit 0a4ad7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions techtrends/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ LABEL maintainer="Katie Gamanji"
WORKDIR /app

# Copy the current directory contents into the container at /app
COPY . /app
COPY techtrends /app

# Install packages defined in the requirements.txt file
RUN cd techtrends && pip install -r requirements.txt
RUN pip install -r requirements.txt

# Initialize the database with pre-defined posts
RUN python init_db.py
Expand Down

0 comments on commit 0a4ad7f

Please sign in to comment.