mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00
fix(build): missing concat EOL on Dockerfile (#955)
This commit is contained in:
parent
f774831d76
commit
e63719a57d
2 changed files with 7 additions and 7 deletions
10
Dockerfile
10
Dockerfile
|
@ -2,9 +2,9 @@
|
|||
FROM node:18.7.0-alpine3.16 AS web-builder
|
||||
COPY . ./
|
||||
WORKDIR /web
|
||||
RUN corepack enable &&
|
||||
pnpm install --frozen-lockfile &&
|
||||
pnpm run build
|
||||
RUN corepack enable && \
|
||||
pnpm install --frozen-lockfile && \
|
||||
pnpm run build
|
||||
|
||||
# build app
|
||||
FROM golang:1.20-alpine3.16 AS app-builder
|
||||
|
@ -39,8 +39,8 @@ FROM alpine:latest
|
|||
LABEL org.opencontainers.image.source = "https://github.com/autobrr/autobrr"
|
||||
|
||||
ENV HOME="/config" \
|
||||
XDG_CONFIG_HOME="/config" \
|
||||
XDG_DATA_HOME="/config"
|
||||
XDG_CONFIG_HOME="/config" \
|
||||
XDG_DATA_HOME="/config"
|
||||
|
||||
RUN apk --no-cache add ca-certificates curl tzdata jq
|
||||
|
||||
|
|
|
@ -27,8 +27,8 @@ FROM alpine:latest
|
|||
LABEL org.opencontainers.image.source = "https://github.com/autobrr/autobrr"
|
||||
|
||||
ENV HOME="/config" \
|
||||
XDG_CONFIG_HOME="/config" \
|
||||
XDG_DATA_HOME="/config"
|
||||
XDG_CONFIG_HOME="/config" \
|
||||
XDG_DATA_HOME="/config"
|
||||
|
||||
RUN apk --no-cache add ca-certificates curl tzdata jq
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue