Update Docker files June 2023

* Update Docker files June 2023
This commit is contained in:
abraunegg 2023-06-21 10:21:29 +10:00
parent 3340fcca6a
commit 6402633987
4 changed files with 11 additions and 7 deletions

View file

@ -5,16 +5,20 @@ on:
branches: [ master ] branches: [ master ]
tags: [ 'v*' ] tags: [ 'v*' ]
pull_request: pull_request:
branches: # Comment these out to force a test build on a PR
- master #branches:
types: [closed] # - master
#types: [closed]
env: env:
DOCKER_HUB_SLUG: driveone/onedrive DOCKER_HUB_SLUG: driveone/onedrive
jobs: jobs:
build: build:
if: (!(github.event.action == 'closed' && github.event.pull_request.merged != true)) # Comment this out to force a test build on a PR
#if: (!(github.event.action == 'closed' && github.event.pull_request.merged != true))
# Build runs on
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:

View file

@ -1,6 +1,6 @@
# -*-Dockerfile-*- # -*-Dockerfile-*-
ARG FEDORA_VERSION=37 ARG FEDORA_VERSION=38
ARG DEBIAN_VERSION=bullseye ARG DEBIAN_VERSION=bullseye
ARG GO_VERSION=1.20 ARG GO_VERSION=1.20
ARG GOSU_VERSION=1.16 ARG GOSU_VERSION=1.16

View file

@ -1,6 +1,6 @@
# -*-Dockerfile-*- # -*-Dockerfile-*-
ARG ALPINE_VERSION=3.17 ARG ALPINE_VERSION=3.18
ARG GO_VERSION=1.20 ARG GO_VERSION=1.20
ARG GOSU_VERSION=1.16 ARG GOSU_VERSION=1.16

View file

@ -1,6 +1,6 @@
# -*-Dockerfile-*- # -*-Dockerfile-*-
ARG DEBIAN_VERSION=bullseye ARG DEBIAN_VERSION=stable
FROM debian:${DEBIAN_VERSION} AS builder-onedrive FROM debian:${DEBIAN_VERSION} AS builder-onedrive