resume-analysis / dockerfile
minskiter's picture
feat(docker): update docker config
f0b9b57
raw
history blame
No virus
277 Bytes
FROM python:3.8
# Path: /app
WORKDIR /app
# CACHE
COPY requirements.txt ./
RUN pip install -r requirements.txt
# CACHE GRPC
COPY requirements.grpc.txt ./
RUN pip install -r requirements.grpc.txt
COPY . ./
RUN ./grpc.sh
EXPOSE 50051
ENTRYPOINT [ "python", "./server.py" ]