generated from tyrel/assembly-workspace-template
21 lines
401 B
Docker
21 lines
401 B
Docker
FROM i686/ubuntu
|
|
|
|
RUN apt update
|
|
RUN apt install -y build-essential wget vim zsh
|
|
|
|
RUN mkdir -p /code
|
|
WORKDIR /code
|
|
|
|
RUN wget https://www.plantation-productions.com/Webster/HighLevelAsm/HLAv2.16/linux.hla.tar.gz --no-check-certificate
|
|
|
|
RUN tar -xzvf linux.hla.tar.gz
|
|
RUN mv usr/hla /usr/
|
|
|
|
RUN cp /usr/hla/hla /bin
|
|
RUN cp /usr/hla/hlaparse /bin
|
|
RUN rm -rf usr
|
|
|
|
RUN rm linux.hla.tar.gz
|
|
|
|
CMD ["/bin/zsh"]
|