Skip to content

Commit 224ba57

Browse files
committed
use file context
1 parent f783f74 commit 224ba57

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build-release-dev.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,13 @@ jobs:
7070
uses: actions/download-artifact@v2
7171
with:
7272
name: phpListZip
73-
path: phplist-${{ env.RELEASE_VERSION }}.tgz
73+
path: tmp/phplist-${{ env.RELEASE_VERSION }}.tgz
7474

7575
- name: Build and push
7676
id: docker_build
7777
uses: docker/build-push-action@v2
7878
with:
79+
context: .
7980
push: true
8081
no-cache: true
8182
file: Dockerfile.release

Dockerfile.release

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ FROM debian:buster-slim
33

44
LABEL maintainer="[email protected]"
55

6-
RUN apt-get update && apt-get upgrade -y
6+
RUN apt-get update && apt-get upgrade -y
77

8-
RUN apt-get install -y apt-utils \
9-
vim apache2 net-tools php-mysql \
10-
libapache2-mod-php php-curl php-gd \
11-
git cron php-imap php-xml php-zip php-mbstring python-pip
8+
RUN apt-get install -y apt-utils \
9+
vim apache2 net-tools php-mysql \
10+
libapache2-mod-php php-curl php-gd \
11+
git cron php-imap php-xml php-zip php-mbstring python-pip
1212

1313
RUN useradd -d /var/www/phpList3 phplist
1414

0 commit comments

Comments
 (0)