diff --git a/backend/Dockerfile b/backend/Dockerfile index 24faf35..e702f69 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9.6 +FROM focker.ir/python:3.9.6 ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 7c79fc6..e8df012 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.18.0 AS build +FROM focker.ir/node:18.20-alpine AS build WORKDIR /run @@ -8,7 +8,7 @@ RUN npm install COPY . . RUN npm run build -FROM alpine:3.17.6 AS production +FROM focker.ir/alpine:3.17.6 AS production WORKDIR /run COPY --from=build /run/dist /dist