Skip to content

Commit

Permalink
Merge pull request #484 from root-gg/upgrade_docker_versions
Browse files Browse the repository at this point in the history
Upgrade alpine and node Docker images version
  • Loading branch information
bodji authored Jun 30, 2023
2 parents e8c7377 + b5b209b commit 68ad0d9
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##################################################################################
FROM --platform=$BUILDPLATFORM node:19-alpine AS plik-frontend-builder
FROM --platform=$BUILDPLATFORM node:20-alpine AS plik-frontend-builder

# Install needed binaries
RUN apk add --no-cache git make bash
Expand Down Expand Up @@ -43,7 +43,7 @@ FROM scratch AS plik-release-archive
COPY --from=plik-builder --chown=1000:1000 /go/src/github.com/root-gg/plik/plik-*.tar.gz /

##################################################################################
FROM alpine:3.17 AS plik-image
FROM alpine:3.18 AS plik-image

RUN apk add --no-cache ca-certificates

Expand All @@ -65,4 +65,4 @@ COPY --from=plik-builder --chown=1000:1000 /go/src/github.com/root-gg/plik/relea
EXPOSE 8080
USER plik
WORKDIR /home/plik/server
CMD ./plikd
CMD ./plikd
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ Plik is a scalable & friendly temporary file upload system (Wetransfer like) in
##### From release
To run plik, it's very simple :
```sh
$ wget https://github.com/root-gg/plik/releases/download/1.3.6/plik-1.3.6-linux-amd64.tar.gz
$ tar xzvf plik-1.3.6-linux-amd64.tar.gz
$ cd plik-1.3.6-linux-amd64/server
$ wget https://github.com/root-gg/plik/releases/download/1.3.7/plik-1.3.6-linux-amd64.tar.gz
$ tar xzvf plik-1.3.7-linux-amd64.tar.gz
$ cd plik-1.3.7-linux-amd64/server
$ ./plikd
```
Et voilà ! You now have a fully functional instance of Plik running on http://127.0.0.1:8080.
Expand Down
22 changes: 22 additions & 0 deletions changelog/1.3.7
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Plik 1.3.7

Hi, today we're releasing Plik 1.3.7 !
Here is the changelog :

New :
- Create/Edit users settings from web UI
- Add Text button to open the copy paste dialog
- Add maxFileSize and maxTTL default values to admin view

Fix :
- Fix create empty upload with authentication forced
- Automatically strip server URL trailing slash in Plik client
- Fix content-type detection for files smaller than 1KB
- Remove empty parent directories in file data backend
- Fix the use of deprecated key derivation
- Make SourceIP middleware remove zone from ip addreses

Binaries have been built with Go 1.20.5

Faithfully,
The plik team

0 comments on commit 68ad0d9

Please sign in to comment.