Skip to content

Commit ae52b66

Browse files
Fix Docker Image Creation
1 parent 6f839ad commit ae52b66

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

.github/workflows/build_containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
docker build \
5353
--no-cache \
5454
--file Dockerfile \
55-
--tag ghcr.io/virtualcell/vcell-ai-website:${TAG_NAME} \
55+
--tag ghcr.io/virtualcell/vcell-ai-frontend:${TAG_NAME} \
5656
--label org.opencontainers.image.created=${CREATED} \
5757
--label org.opencontainers.image.license=MIT \
5858
.

backend/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ COPY pyproject.toml poetry.lock* ./
1818
# 6. Install dependencies (without virtualenvs, no-root to skip package install)
1919
RUN poetry install --no-interaction --no-ansi --no-root
2020

21-
# 7. Copy .env file
22-
COPY .env ./
23-
2421
# 8. Now copy the full project
2522
COPY . .
2623

frontend/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ WORKDIR /app
88
COPY package.json package-lock.json* pnpm-lock.yaml* ./
99
RUN npm install
1010

11-
# 4. Copy .env file
12-
COPY .env ./
13-
1411
# 5. Copy the rest of the app
1512
COPY . .
1613

0 commit comments

Comments
 (0)