ref: 319d775c13adcf219b9c5f3d76c53508e7271b3d
dir: /Dockerfile/
# This file is part of RGBDS. # # Copyright (c) 2018-2019, Phil Smith and RGBDS contributors. # # SPDX-License-Identifier: MIT # docker build -t rgbds:vX.X.X-alpine FROM alpine:latest RUN apk add --update \ build-base \ byacc \ libpng-dev COPY . /rgbds WORKDIR /rgbds RUN make Q='' all FROM alpine:latest RUN apk add --update \ libpng COPY --from=0 \ /rgbds/rgbasm \ /rgbds/rgbfix \ /rgbds/rgblink \ /rgbds/rgbgfx \ /bin/