Skip to content

Commit

Permalink
FFT
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyarbij committed Aug 20, 2023
1 parent 02ff605 commit 81b6dee
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ ENV PYTHONDONTWRITEBYTECODE=1
# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED=1

# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
libffi-dev \
build-essential \
&& rm -rf /var/lib/apt/lists/*

# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
Expand Down

0 comments on commit 81b6dee

Please sign in to comment.