Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
denBruneBarone committed Feb 23, 2024
2 parents 818e98f + a80eaae commit acca879
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:3.10-slim

WORKDIR /code

COPY . .

RUN pip install --no-cache-dir -r requirements.txt

CMD ["python", "main.py"]
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: '3'

services:
my_service:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/code
Empty file added requirements.txt
Empty file.

0 comments on commit acca879

Please sign in to comment.