Renamed backend folder
This commit is contained in:
parent
9835954647
commit
4b158261db
@ -6,9 +6,9 @@ COPY front .
|
|||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
FROM python:3-slim
|
FROM python:3-slim
|
||||||
WORKDIR /app
|
WORKDIR /srv
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
||||||
COPY ./app ./app
|
COPY ./back ./back
|
||||||
COPY --from=builder /src/dist ./front/dist
|
COPY --from=builder /src/dist ./front/dist
|
||||||
CMD uvicorn app.main:app --host 0.0.0.0 --port 80
|
CMD uvicorn back.main:app --host 0.0.0.0 --port 80
|
||||||
|
@ -21,7 +21,7 @@ Backend:
|
|||||||
```sh
|
```sh
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
uvicorn app.main:app --reload
|
uvicorn back.main:app --reload
|
||||||
```
|
```
|
||||||
|
|
||||||
## Deploy instructions
|
## Deploy instructions
|
||||||
|
Loading…
x
Reference in New Issue
Block a user