Skip to content

Commit

Permalink
Release 3.3.0 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Nov 23, 2022
1 parent c84f7c9 commit 8ffb2cd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
id: prep
run: |
DOCKER_IMAGE=${GITHUB_REPOSITORY/docker-/}
set -x
if [[ $GITHUB_REF == refs/heads/* ]]; then
if [[ $GITHUB_REF == refs/heads/*/* ]] ; then
BRANCH="${DOCKER_IMAGE}:$(echo $GITHUB_REF | sed "s|refs/heads/||g" | sed "s|/|-|g")"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
id: prep
run: |
DOCKER_IMAGE=${GITHUB_REPOSITORY/docker-/}
set -x
if [[ $GITHUB_REF == refs/heads/* ]]; then
if [[ $GITHUB_REF == refs/heads/*/* ]] ; then
BRANCH="${DOCKER_IMAGE}:$(echo $GITHUB_REF | sed "s|refs/heads/||g" | sed "s|/|-|g")"
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 3.3.0 2022-11-23 <dave at tiredofit dot ca>

### Added
- Alpine 3.17 Base
- Switch to OpenSSL 3.x instead of LibreSSL


## 3.2.2 2022-10-04 <dave at tiredofit dot ca>

### Changed
Expand Down
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/tiredofit/alpine:3.16
FROM docker.io/tiredofit/alpine:3.17
LABEL maintainer="Dave Conroy (github.com/tiredofit)"

### Environment Variables
Expand Down Expand Up @@ -27,7 +27,7 @@ RUN source /assets/functions/00-container && \
meson \
ninja \
ncurses-dev \
libressl-dev \
openssl-dev \
readline-dev \
tar \
zlib-dev \
Expand All @@ -37,12 +37,11 @@ RUN source /assets/functions/00-container && \
ca-certificates \
git \
inotify-tools \
libcrypto1.1 \
libpcap \
lz4 \
lz4-libs \
lzo \
libressl \
openssl \
ncurses \
readline \
zlib && \
Expand All @@ -61,4 +60,4 @@ RUN source /assets/functions/00-container && \
EXPOSE 655/tcp 655/udp

### Files Addition
ADD install /
COPY install /

0 comments on commit 8ffb2cd

Please sign in to comment.