Skip to content
Snippets Groups Projects
Unverified Commit 339a3a62 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

docker: add last version 1060

parent 5c3afc58
No related branches found
No related tags found
No related merge requests found
/Xnfs/lbmcdb/common/conda/envs/last_1060
\ No newline at end of file
FROM ubuntu:18.04
MAINTAINER Laurent Modolo
ENV LAST_VERSION=1060
ENV PACKAGES curl=7.58.0* \
unzip \
make=4.1* \
g++ \
zlib1g-dev=1:1.2.11* \
ca-certificates=20180409 \
build-essential=12.4*
RUN apt-get update && \
apt-get install -y --no-install-recommends ${PACKAGES} && \
apt-get clean
RUN curl -k -L http://last.cbrc.jp/last-${LAST_VERSION}.zip -o last-${LAST_VERSION}.zip && \
unzip last-${LAST_VERSION}.zip && \
cd last-${LAST_VERSION} && \
make && \
cp src/last* /usr/bin/ && \
cd .. && \
rm -Rf last-${LAST_VERSION}
#!/bin/sh
docker pull lbmc/last:1060
docker build src/.docker_modules/last/1060/ -t 'lbmc/last:1060'
docker push lbmc/last:1060
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment