Skip to content

Commit

Permalink
fix: please work ;w;
Browse files Browse the repository at this point in the history
  • Loading branch information
auguwu committed Jan 29, 2022
1 parent d1f7a37 commit 15f58e3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ before:
- go mod tidy
- go mod download

env:
- CGO_ENABLED=0
- GO11MODULE=on

builds:
- id: "ume"
binary: "ume"
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ set -o pipefail

. /app/noel/ume/scripts/liblog.sh

if ! [[ "${UME_ENABLE_WELCOME_PROMPT}" =~ ^(no|false)$ ]]; then
if ! [[ "${UME_ENABLE_WELCOME_PROMPT:-yes}" =~ ^(no|false)$ ]]; then
info ""
info " Welcome to the ${BOLD}ume${RESET} container image."
info " Easy, self-hostable, and flexible image and file host, made in Go using MongoDB GridFS."
Expand Down
2 changes: 1 addition & 1 deletion goreleaser.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:latest

RUN apk update && apk add bash
RUN apk update && apk add --no-cache bash musl-dev libc-dev gcompat

WORKDIR /app/noel/ume
COPY docker/docker-entrypoint.sh /app/noel/ume/scripts/docker-entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "3.2.3"
"version": "3.2.4"
}

0 comments on commit 15f58e3

Please sign in to comment.