File: Dockerfile.target.sdist

package info (click to toggle)
weakforced 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,196 kB
  • sloc: cpp: 20,397; python: 2,002; sh: 700; makefile: 432
file content (18 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This builds the source distributions for all components

# Builds the wforce sdist in a separate stage
@IF [ ! -z "$M_all$M_wforce" ]
@INCLUDE Dockerfile.wforce
@ENDIF

FROM alpine:3.6 as sdist

# Copy wforce tarball
@IF [ ! -z "$M_all$M_wforce" ]
COPY --from=wforce /sdist/ /sdist/
@ENDIF

# Show contents for build debugging
@IF [ ! -z "$M_all$M_wforce" ]
RUN ls -l /sdist/*
@ENDIF