From 105d87974995eeb5b238d0278d806afb56d88922 Mon Sep 17 00:00:00 2001 From: Soeun Uhm Date: Thu, 11 Jan 2024 17:23:34 +0900 Subject: [PATCH] :zap: change dockerfile instruction order --- dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 74b3bd6..cffe1b0 100644 --- a/dockerfile +++ b/dockerfile @@ -2,11 +2,12 @@ FROM python:3.10 WORKDIR /app/ -COPY . /app/ COPY ./requirements.txt /app/ RUN pip install -r requirements.txt VOLUME /app/resume-db +COPY . /app/ + CMD uvicorn --host=0.0.0.0 --port 8000 main:app