3 lines
97 B
Docker
3 lines
97 B
Docker
FROM node:14.16
|
|
RUN apt-get update && apt-get install -y make gcc nasm libpng-dev
|
|
CMD [ "node" ]
|