This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | FROM ubuntu:17.10 | |
| WORKDIR /root | |
| # RUN /usr/bin/apt update | |
| RUN sed -i 's/archive/old-releases/g' /etc/apt/sources.list && \ | |
| /usr/bin/apt update; \ | |
| apt install -y software-properties-common make build-essential libssl-dev zlib1g-dev \ | |
| libbz2-dev libreadline-dev libsqlite3-dev \ | |
| wget curl llvm libncurses5-dev \ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # FROM ubuntu:latest | |
| # RUN apt update && apt install nasm git python3 python3-dev -y | |
| FROM alpine:3.14 | |
| RUN apk add --no-cache nasm git python3 python3-dev | |
| WORKDIR /app | |
| RUN git clone https://github.com/fishstiqz/nasmshell |