Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andyi95 committed Dec 25, 2023
1 parent 8b31490 commit b4c033d
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 59 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build-and-push:
name: Deploy images on the destination server
name: Build and test run compose configuration
runs-on: ubuntu-latest
steps:
- name: Check out the repo
Expand Down
96 changes: 41 additions & 55 deletions backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Andrey Chernikov"]

[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.95"
fastapi = "^0.105"
pydantic = "^1.9.0"
pymorphy2 = "^0.9.1"
pymorphy2-dicts-ru = "^2.4.417127"
Expand Down
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:17-alpine
FROM node:18-alpine

WORKDIR /app

Expand All @@ -10,4 +10,4 @@ ENV HOST 0.0.0.0

COPY . .

CMD ["npm", "run", "serve"]
CMD ["npm", "run", "vite:dev"]

0 comments on commit b4c033d

Please sign in to comment.