Skip to content
Snippets Groups Projects
Commit b0d21c59 authored by atlomak's avatar atlomak
Browse files

Fixing docker

parent 4102c8c0
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,6 @@ services:
generate_key:
build:
context: ./key_generator_service
dockerfile: ../sign/Dockerfile
tags:
- "hackyeah-key_generator:latest"
ports:
......
FROM python:3.11.5-slim
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN cd src/
CMD [ "uvicorn", "main:app --reload" ]
EXPOSE 8000
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment