Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
clpm
clpm
Commits
d1178c06
Commit
d1178c06
authored
Oct 10, 2019
by
Eric Timmons
Browse files
Forgot file
parent
ebeb01e2
Pipeline
#987
passed with stage
in 10 minutes and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
docker/Dockerfile.build-debian-arm
0 → 100644
View file @
d1178c06
# Builds a Docker image to build CLPM with Debian
#
# This software is part of CLPM. See README.org for more information. See
# LICENSE for license information.
FROM daewok/sbcl:1.5.7-debian-stretch-build as sbcl-builder
RUN sbcl --version
FROM debian:stretch
RUN apt-get update \
&& apt-get install -y --no-install-recommends build-essential libssl1.0-dev libz-dev libsqlite3-dev \
&& rm -rf /var/lists/apt
COPY --from=sbcl-builder /usr/local/bin/sbcl /usr/local/bin/sbcl
COPY --from=sbcl-builder /usr/local/lib/ /usr/local/lib/
VOLUME /clpm
WORKDIR /clpm
ENV ASDF_OUTPUT_TRANSLATIONS="(:output-translations :ignore-inherited-configuration (:root (\"/clpm/build/docker-cl-cache/\" :implementation :**/ :*.*.*)))" CLPM_BUILD_CACHE_DIR=/clpm/build/cl-cache
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment