Skip to content

Commit

Permalink
Update alpine version in Dockerfile. Remove redundant packages
Browse files Browse the repository at this point in the history
  • Loading branch information
OscarAkaElvis committed Oct 25, 2024
1 parent 40cf299 commit dd7ba0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### 3.8
- Updated logo
- Fixed minor problem in Dockerfile, updated to new alpine version

### 3.7
- Fixed menu command to avoid being detected as malware
Expand Down
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Evil-WinRM Dockerfile

# Base image
FROM alpine:3.14 AS final
FROM alpine:3.14 AS build
FROM alpine:3.20.3 AS final
FROM alpine:3.20.3 AS build

# Credits & Data
LABEL \
Expand Down Expand Up @@ -93,9 +93,7 @@ FROM final
RUN apk --no-cache add \
readline \
yaml \
libffi \
zlib \
openssl
libffi

# Make the ruby and Evil-WinRM paths available
ENV PATH=$PATH:/opt/rubies/ruby-3.2.2/bin:/opt/evil-winrm
Expand Down

0 comments on commit dd7ba0f

Please sign in to comment.