mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +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
|
FROM node:18.7.0-alpine3.16 AS web-builder
|
||||||
COPY . ./
|
COPY . ./
|
||||||
WORKDIR /web
|
WORKDIR /web
|
||||||
RUN corepack enable &&
|
RUN corepack enable && \
|
||||||
pnpm install --frozen-lockfile &&
|
pnpm install --frozen-lockfile && \
|
||||||
pnpm run build
|
pnpm run build
|
||||||
|
|
||||||
# build app
|
# build app
|
||||||
FROM golang:1.20-alpine3.16 AS app-builder
|
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"
|
LABEL org.opencontainers.image.source = "https://github.com/autobrr/autobrr"
|
||||||
|
|
||||||
ENV HOME="/config" \
|
ENV HOME="/config" \
|
||||||
XDG_CONFIG_HOME="/config" \
|
XDG_CONFIG_HOME="/config" \
|
||||||
XDG_DATA_HOME="/config"
|
XDG_DATA_HOME="/config"
|
||||||
|
|
||||||
RUN apk --no-cache add ca-certificates curl tzdata jq
|
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"
|
LABEL org.opencontainers.image.source = "https://github.com/autobrr/autobrr"
|
||||||
|
|
||||||
ENV HOME="/config" \
|
ENV HOME="/config" \
|
||||||
XDG_CONFIG_HOME="/config" \
|
XDG_CONFIG_HOME="/config" \
|
||||||
XDG_DATA_HOME="/config"
|
XDG_DATA_HOME="/config"
|
||||||
|
|
||||||
RUN apk --no-cache add ca-certificates curl tzdata jq
|
RUN apk --no-cache add ca-certificates curl tzdata jq
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue