We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f0b396 commit 0b81170Copy full SHA for 0b81170
Dockerfile.dev
@@ -0,0 +1,9 @@
1
+FROM python:latest
2
+
3
+WORKDIR /app
4
5
+COPY requirements.txt ./
6
7
+COPY . ./
8
9
+RUN pip install --no-cache-dir -r requirements.txt
docker-compose.yml
@@ -0,0 +1,11 @@
+version: '3'
+services:
+ api:
+ build:
+ dockerfile: Dockerfile.dev
+ container_name: jooble
+ restart: always
+ command: flask run --host=0.0.0.0
10
+ ports:
11
+ - "5000:5000"
requirements.txt
@@ -0,0 +1,13 @@
+beautifulsoup4==4.11.2
+certifi==2022.12.7
+charset-normalizer==3.0.1
+click==8.1.3
+Flask==2.2.3
+idna==3.4
+itsdangerous==2.1.2
+Jinja2==3.1.2
+MarkupSafe==2.1.2
+requests==2.28.2
+soupsieve==2.4
12
+urllib3==1.26.14
13
+Werkzeug==2.2.3
0 commit comments