Skip to content
Snippets Groups Projects
Commit 112ec252 authored by Hyunseok_Sang's avatar Hyunseok_Sang
Browse files

임시적 변경. 유의미한 변경 사항은 없습니다.

parent 92649b00
No related branches found
No related tags found
No related merge requests found
...@@ -7,3 +7,4 @@ config.json ...@@ -7,3 +7,4 @@ config.json
*.png *.png
*.jpg *.jpg
test.py test.py
ssfshop/
\ No newline at end of file
# 기본 이미지 설정
FROM python:3.9-slim-buster
# 작업 디렉토리 설정
WORKDIR /app
# 의존성 설치
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
# 소스코드 복사
COPY . .
WORKDIR /app/src
# Flask 명령으로 앱 실행
CMD [ "python", "-m" , "app", "run", "--host=0.0.0.0"]
\ No newline at end of file
# 이미지 자동 처리
\ No newline at end of file
onnxruntime
opencv-python
google-cloud-vision
python-dotenv
openai
retina-face
\ No newline at end of file
...@@ -5,4 +5,4 @@ app = Flask(__name__) ...@@ -5,4 +5,4 @@ app = Flask(__name__)
app = create_router(app) app = create_router(app)
if __name__ == '__main__': if __name__ == '__main__':
app.run(debug=True) app.run()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment