Skip to content

Commit c124cb4

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

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/workflows/build_containers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ 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
.
59-
docker push --all-tags ghcr.io/virtualcell/vcell-ai-website
59+
docker push --all-tags ghcr.io/virtualcell/vcell-ai-frontend
6060
popd
6161
6262
- name: Setup tmate session

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)