(feat) proxy: docker - use wheels for builds

This commit is contained in:
ishaan-jaff 2023-11-30 14:29:30 -08:00
parent 3b2bbc757e
commit f565e6249d

View file

@ -8,7 +8,8 @@ WORKDIR /app
COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
RUN pip wheel --no-cache-dir --wheel-dir=wheels -r requirements.txt
RUN pip install --no-cache-dir --find-links=wheels -r requirements.txt
EXPOSE 4000/tcp