@@ -1,4 +1,4 @@
-FROM fr_req AS fr
+FROM fr_req
COPY . .
-FROM python:3.10-bullseye AS fr_base
+FROM python:3.10-bullseye
WORKDIR /usr/src/app
-FROM fr_base AS fr_req
+FROM fr_base
@@ -1,3 +1,3 @@
#!/bin/bash
-docker build -f Dockerfile.base --target fr_base --no-cache -t fr_base .
+docker build -f Dockerfile.base --no-cache -t fr_base .
-docker build -f Dockerfile.req --target fr_req --no-cache -t fr_req .
+docker build -f Dockerfile.req --no-cache -t fr_req .
@@ -17,7 +17,6 @@ services:
web:
build:
context: .
- target: fr
restart: always
ports:
- "8349:8349"