Commit 6e78c2f3 authored by Linshizhi's avatar Linshizhi

Add Dockerfile

parent ef043da6
From ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && \
apt-get install -y libjpeg-dev && \
apt-get install -y libfreetype-dev && \
apt-get install -y libfontconfig-dev && \
apt-get install -y libgl1-mesa-dev && \
apt-get install -y mesa-common-dev
CMD "/bin/bash"
#include <memory>
#ifndef CANVAS_H
#define CANVAS_H
......@@ -7,6 +9,7 @@ enum PixelTypes {};
class Canvas {
public:
Canvas(int width, int height, PixelTypes pixType);
};
#endif /* CANVAS_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment