1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-11 23:43:19 +00:00

Fixing various typos

This commit is contained in:
Frank Halasz 2023-06-08 12:06:13 -07:00
parent da7025ff02
commit 501fb8e87a
2 changed files with 4 additions and 3 deletions

View File

@ -8,7 +8,7 @@
#
# ******************************************************************************
FROM ubuntu:latet
FROM ubuntu:latest
SHELL ["/bin/bash", "-c"]
USER root:root
# Install build tools

View File

@ -12,13 +12,14 @@
FROM ghcr.io/interlisp/maiko-builder
ARG INSTALL_LOCATION=/usr/local/interlisp/maiko
SHELL ["/bin/bash", "-c"]
# Copy over / clean maiko repo
COPY . ${INSTALL_LOCATION}
# Build maiko
RUN cd ${INSTALL_LOCATION}/bin \
&& ./makeright x cleanup\
&& ./makeright x cleanup \
&& ./makeright x
RUN cd ${INSTALL_LOCATION}/bin \
&& if [[ "$(./osversion)" != "linux" || "$(./mchinetype)" = "x86_64" ]]; then \
&& if [ "$(./machinetype)" = "x86_64" ]; then \
./makeright init; \
fi